if … else
Pascal           C/C++
if x < 0 then
  x := -x
if (x < 0)
     x = -x;
if (x > y) then
     max := x
else
     max := y
   if (x > y)
     max = x;
   else
     max = y;